From 6065fff5c6620cefe8cba31b68650d8048e9ad45 Mon Sep 17 00:00:00 2001 From: Matthew Flaschen Date: Thu, 2 Oct 2014 01:06:46 -0400 Subject: [PATCH] Make submit of Special:NewFiles progressive Bug: 71445 Change-Id: Iba2a8e7f37c2c1af3a018740d5a9b48edc84e238 --- includes/specials/SpecialNewimages.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/specials/SpecialNewimages.php b/includes/specials/SpecialNewimages.php index 546c191405..b9d18729c3 100644 --- a/includes/specials/SpecialNewimages.php +++ b/includes/specials/SpecialNewimages.php @@ -201,7 +201,10 @@ class NewFilesPager extends ReverseChronologicalPager { $context = new DerivativeContext( $this->getContext() ); $context->setTitle( $this->getTitle() ); // Remove subpage $form = new HTMLForm( $fields, $context ); + $form->setSubmitTextMsg( 'ilsubmit' ); + $form->setSubmitProgressive(); + $form->setMethod( 'get' ); $form->setWrapperLegendMsg( 'newimages-legend' ); -- 2.20.1